home *** CD-ROM | disk | FTP | other *** search
/ Graphics Plus / Graphics Plus.iso / libs / gle / gle33b.txt < prev    next >
Encoding:
Text File  |  1992-11-29  |  5.3 KB  |  173 lines

  1. GLE is a hi quality graphics package for scientists.  GLE
  2. combines a user friendly interface with a full range of
  3. facilities for producing publication quality graphs, diagrams,
  4. posters and slides.  GLE runs on PC's, VAXes and Unix.
  5.  
  6. It provides LATEX quality fonts together with a flexible 
  7. graphics module which allows the user to specify any feature 
  8. of a graph (down to the line width of the subticks for example)
  9.  
  10. Complex pictures can be drawn with user defined subroutines and 
  11. simple looping structures.
  12.  
  13. The SURFACE utility allows hidden line surface plotting.
  14.  
  15. The CONTOUR utility allows contour plots. 
  16.  
  17. The MANIP utility allows columns of data to be manipulated.
  18.  
  19. The FITLS utility allows arbitrary equations to be fitted to 
  20. data.
  21.  
  22. Current device drivers support XWindows, REGIS, TEK4010, all PC 
  23. graphics cards, VT100's, HP-Plotters, PostScript Printers, EPSON 
  24. Printers and LaserJet/Paintjet Printers.
  25.  
  26. GLE runs on VAX-VMS, UNIX and PC's, giving a near identical user interface
  27. on all platforms.
  28.  
  29. For information on ftp sites for VMS or UNIX versions of GLE, or any
  30. other questions send a mail message to:
  31.             srghcxp@grv.dsir.govt.nz
  32.  
  33. -----------------------------------------------------------------------------
  34. --------- end of advertising, beginning of installation instructions --------
  35. -----------------------------------------------------------------------------
  36. In order to install GLE on a UNIX system ftp the following files:
  37.  
  38. Be sure to use binary transfer for tar_z files.
  39.  
  40.     $ ftp wuarchive.wustl.edu 128.252.135.4
  41.     FTP> user anonymous
  42.     Password: (your Email address)
  43.     FTP> cd /graphics/graphics    (probable directory, check index)
  44.     FTP> ascii
  45.     FTP> get gle33b.txt        (this file)
  46.     FTP> binary
  47.     FTP> get gle33b.tar.Z
  48.     FTP> get gle33b.ps.Z   (Optional PostScript copy of manual)
  49.     FTP> quit
  50.     
  51. .............................................................................
  52. GLE will compile under GCC or XLC (on AIX R6000's) 
  53.  
  54. It is suggested that you build GLE in a temporary directory of it's own
  55. and then use the install.com script to copy the 'required' parts
  56. of gle into the system areas, you can then delete the gle source directory
  57. tree.
  58.  
  59. Then uncompress and un-Tar the installation kit.
  60.     uncompress gle33b.tar.Z
  61.     tar -xvf gle33b.tar
  62.     cd gle
  63.  
  64. GLE needs to know where it is being built as it runs itself during
  65. the installation.  Define GLE_TOP:
  66.  
  67.     pwd        (Print working directory)
  68. /home/mydir/gle
  69.  
  70. (sh)    export GLE_TOP="/home/mydir/gle/"    (use your own directory)
  71. (csh)    setenv GLE_TOP "/home/mydir/gle/"  (don't miss off the trailing slash)
  72.  
  73. To test SURFACE you will need to define SURF_TOP too.
  74.  
  75.     export SURF_TOP="/home/mydir/gle/util/surf/"
  76.  
  77. These defines are not needed once gle is installed in the system directories.
  78.  
  79. If you are going to want to test it before copying it to /usr/local/bin
  80. then you might want to add GLE_TOP into your PATH.
  81.  
  82.     export PATH=$PATH:/home/mydir/gle
  83.  
  84. It might be worth touching the files as TAR doesn't always 
  85. get the dates right (which confuses make):
  86.     touch gle/*
  87.     touch gle/*/*
  88.     touch gle/*/*/*
  89. (if you are  building gle in a directory which already had a copy of 
  90. gle then you might have to force make to recompile by deleting the
  91. object files.
  92.     rm *.o
  93. )
  94.  
  95. Pick one of the files {config.*} which most matches
  96. your machine and copy it to {config.i}, you may want 
  97. to edit this file if you have xwindows or need to make 
  98. some other simple change.
  99.  
  100.     ls config.*
  101.     cp config.ultrix config.i
  102.  
  103. Now run make:
  104.     make
  105. Once that has completed type in:
  106.     make doutils
  107.  
  108. To test gle out:
  109.   Create yourself a gle directory to play in:
  110.     mkdir gletest
  111.     cd gletest
  112.     cp ../demo/*  ( or /usr/local/gle/demo/*   to copy the examples)
  113.     
  114.   Then try it out (note: the command is gle, not cgle):
  115.     ../gle test.gle         (For dumb terminals)
  116.     ../gle test.gle -dX    (For xwindows)
  117.     ../gle test.gle -dtek    (Tektronix 4010 terminals)
  118.     ../gle test.gle -dregis     (Regis, vt240, vt340)
  119.     ../gle test.gle -dhpgl      (HP plotters)
  120.     ../gle test.gle -dps    (To produce PostScript output)
  121.  
  122. (NOTE: if you already have gle installed in a system path then
  123. the old version of gle will be picked up rather than the new version
  124.  (even using gle_path).  To avoid this problem you should temporarily 
  125. remove gle from your path variable, you can also run specific
  126. gle drivers using:
  127.     ../gle_ps  (PostScript)
  128.     ../gle_vt  (terminal)
  129.  
  130.  
  131.     (You must replace ../ with the path to where the gle executables
  132.     were created)
  133.  
  134.     (To load a different example press ^F 3, then ^F 0 to draw it)
  135.  
  136. To install gle executables in /usr/bin and the gle help,font and example
  137. files into /usr/local/gle enter the command:
  138.     install.com
  139.  
  140. If you wish to install gle in a different directory permenently 
  141. then you can modify the file {glepath.h} and then recompile or 
  142. you can use the environment variable GLE_TOP
  143.  
  144. After checking that gle is working correctly you can delete
  145. the source files to save a lot of space:
  146.     cd ..
  147.     rm gle -r        
  148.  
  149. Once gle has been installed the commands that are added are:
  150.  
  151.     gle        Graphics Language Editor, graphs and slides.
  152.     surface        Plots hidden line wire mesh 3d plots
  153.     fitls        Fit's best fit least squares line to any equation
  154.     fitz        Creating even grid data from random xyz data
  155.     letz        Creating grid of values from expression
  156.     manip        Data manipulation
  157.  
  158. There is a postscript copy of the manual in
  159.     gle33b.ps.Z
  160.  
  161. If you have to make changes to install GLE on your machine please
  162. send them to me.
  163.  
  164.                 Thanks,  Chris.  (srghcxp@grv.dsir.govt.nz)
  165.  
  166.  
  167.  
  168.  
  169.  
  170.  
  171.  
  172.  
  173.